iT邦幫忙

DAY 19
2

PHP 三十天就上手系列 第 19

PHP 三十天就上手-Day -19 String Functions - 轉換大小寫

  • 分享至 

  • xImage
  •  

strtolower -- 轉小寫
strtoupper -- 轉大寫
寫PHP 的程式,處理字串是非常常做也需要做的工作,這一篇就跟大家講解如何進行字串大小寫的轉換。
strtolower -- 將字串全部都轉小寫
語法如下:
strtolower (要轉換的字串變數);
strtolower換傳回轉後的字串。
example:

<?php
$str = "Mary Had A Little Lamb and She LOVED It So";
$str = strtolower($str);
?> 

上列程式執行後的結果,$str的字傳會變成
mary had a little lamb and she loved it so

strtoupper -- 將字串全部都轉大寫
語法如下:
strtoupper (要轉換的字串變數);
strtoupper 換傳回轉後的字串。

<?php
$str = "Mary Had A Little Lamb and She LOVED It So";
$str = strtoupper($str);
?> 

上列程式執行後的結果,$str的字傳會變成
MARY HAD A LITTLE LAMB AND SHE LOVED IT SO


上一篇
PHP 三十天就上手-Day -18 Array Functions - array_search
下一篇
PHP 三十天就上手-Day -20 String Functions - 取子字串
系列文
PHP 三十天就上手30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

1 則留言

0

我要留言

立即登入留言